home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CICA Windows Explosion!
/
The CICA Windows Explosion! - Disc 2.iso
/
nt
/
source.exe
/
POSIX
/
BSDPSX
/
RINDEX.C
< prev
next >
Wrap
C/C++ Source or Header
|
1992-06-27
|
145b
|
11 lines
#include <string.h>
/*
* Rindex: Posix implementation DF_MSS
*/
char *rindex(const char *p, int ch)
{
return(strrchr(p, ch));
}